home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / share / hobi / solarsys / Solar.exe / 0 / RCDATA / TFRMSTARTTIME / TFRMSTARTTIME.txt
Text File  |  1997-11-30  |  4KB  |  191 lines

  1. object frmStartTime: TfrmStartTime
  2.   Left = 386
  3.   Top = 190
  4.   ActiveControl = spinYear
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Start Time'
  8.   ClientHeight = 297
  9.   ClientWidth = 417
  10.   Font.Color = clWindowText
  11.   Font.Height = -13
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 120
  17.   TextHeight = 16
  18.   object Label2: TLabel
  19.     Left = 12
  20.     Top = 8
  21.     Width = 199
  22.     Height = 16
  23.     Caption = 'Specify when the animation starts.'
  24.   end
  25.   object Label7: TLabel
  26.     Left = 12
  27.     Top = 40
  28.     Width = 32
  29.     Height = 16
  30.     Caption = 'Note:'
  31.   end
  32.   object Label9: TLabel
  33.     Left = 60
  34.     Top = 40
  35.     Width = 345
  36.     Height = 48
  37.     Caption = 
  38.       'The only time that '#39'Start Time'#39' has an effect is when you switch' +
  39.       ' from '#39'relative'#39' to '#39'ellapsed'#39' time or vise versa, and when you ' +
  40.       'are working with relative time.'
  41.     WordWrap = True
  42.   end
  43.   object butOK: TButton
  44.     Left = 320
  45.     Top = 264
  46.     Width = 83
  47.     Height = 27
  48.     Caption = '&OK'
  49.     Default = True
  50.     TabOrder = 3
  51.     OnClick = butOKClick
  52.   end
  53.   object butCancel: TButton
  54.     Left = 224
  55.     Top = 264
  56.     Width = 83
  57.     Height = 27
  58.     Cancel = True
  59.     Caption = '&Cancel'
  60.     TabOrder = 2
  61.     OnClick = butCancelClick
  62.   end
  63.   object grpDate: TGroupBox
  64.     Left = 8
  65.     Top = 104
  66.     Width = 193
  67.     Height = 145
  68.     Caption = 'Date'
  69.     TabOrder = 0
  70.     object lblMonth: TLabel
  71.       Left = 16
  72.       Top = 72
  73.       Width = 57
  74.       Height = 17
  75.       Caption = '&Month:'
  76.       FocusControl = spinMonth
  77.     end
  78.     object lblDay: TLabel
  79.       Left = 16
  80.       Top = 112
  81.       Width = 57
  82.       Height = 16
  83.       Caption = '&Day:'
  84.       FocusControl = spinDay
  85.     end
  86.     object Label3: TLabel
  87.       Left = 16
  88.       Top = 32
  89.       Width = 57
  90.       Height = 16
  91.       Caption = '&Year:'
  92.       FocusControl = spinYear
  93.     end
  94.     object spinYear: TSpinEdit
  95.       Left = 88
  96.       Top = 27
  97.       Width = 81
  98.       Height = 26
  99.       MaxValue = 9999
  100.       MinValue = 1
  101.       TabOrder = 2
  102.       Value = 1996
  103.       OnChange = spinYearChange
  104.     end
  105.     object spinMonth: TSpinEdit
  106.       Left = 88
  107.       Top = 67
  108.       Width = 81
  109.       Height = 26
  110.       MaxLength = 1
  111.       MaxValue = 12
  112.       MinValue = 1
  113.       TabOrder = 0
  114.       Value = 10
  115.       OnChange = spinMonthChange
  116.     end
  117.     object spinDay: TSpinEdit
  118.       Left = 88
  119.       Top = 106
  120.       Width = 81
  121.       Height = 26
  122.       MaxValue = 31
  123.       MinValue = 1
  124.       TabOrder = 1
  125.       Value = 20
  126.     end
  127.   end
  128.   object grpTime: TGroupBox
  129.     Left = 216
  130.     Top = 104
  131.     Width = 193
  132.     Height = 145
  133.     Caption = 'Time'
  134.     TabOrder = 1
  135.     object Label4: TLabel
  136.       Left = 16
  137.       Top = 32
  138.       Width = 57
  139.       Height = 16
  140.       Caption = '&Hour:'
  141.       FocusControl = spinHour
  142.     end
  143.     object Label5: TLabel
  144.       Left = 16
  145.       Top = 72
  146.       Width = 57
  147.       Height = 16
  148.       Caption = 'Mi&nute:'
  149.       FocusControl = spinMinute
  150.     end
  151.     object Label6: TLabel
  152.       Left = 16
  153.       Top = 112
  154.       Width = 57
  155.       Height = 16
  156.       Caption = '&Second:'
  157.       FocusControl = spinSecond
  158.     end
  159.     object spinHour: TSpinEdit
  160.       Left = 88
  161.       Top = 27
  162.       Width = 81
  163.       Height = 26
  164.       MaxValue = 23
  165.       MinValue = 1
  166.       TabOrder = 0
  167.       Value = 20
  168.     end
  169.     object spinMinute: TSpinEdit
  170.       Left = 88
  171.       Top = 67
  172.       Width = 81
  173.       Height = 26
  174.       MaxValue = 59
  175.       MinValue = 0
  176.       TabOrder = 1
  177.       Value = 25
  178.     end
  179.     object spinSecond: TSpinEdit
  180.       Left = 88
  181.       Top = 107
  182.       Width = 81
  183.       Height = 26
  184.       MaxValue = 59
  185.       MinValue = 0
  186.       TabOrder = 2
  187.       Value = 20
  188.     end
  189.   end
  190. end
  191.